home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970626-19970929 / 000056_news@newsmaster….columbia.edu _Fri Jul 11 11:40:48 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id LAA00629
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Fri, 11 Jul 1997 11:40:48 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id LAA22399
  7.     for kermit.misc@watsun; Fri, 11 Jul 1997 11:40:47 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: Kermit running under MS Windows 3.0 script-based or command-line-based
  12. Date: 11 Jul 1997 15:40:47 GMT
  13. Organization: Columbia University
  14. Lines: 39
  15. Message-ID: <5q5k5v$sug$1@apakabar.cc.columbia.edu>
  16. References: <33C579F2.3960@w422zrz.physik.tu-berlin.de>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:7315
  19.  
  20. In article <33C579F2.3960@w422zrz.physik.tu-berlin.de>,
  21. Michael Veit  <veit@w422zrz.physik.tu-berlin.de> wrote:
  22. : I want to write a MS Windows 3.0 compatible program, which is able to
  23. : establish a connection to a server via Kermit. There are two ways:
  24. : 1. searching for a library and embedding of the whole Kermit procedures
  25. : into my program (too much to do..)
  26. We don't recommend it.
  27.  
  28. : 2. starting an external kermit program (freeware ?)...
  29. :
  30. No, it's not freeware; see:
  31.  
  32.   http://www.columbia.edu/kermit/licensing.html
  33.  
  34. : ... without user interaction. My program knows what to do, so the user
  35. : shoud not see anything of the Kermit program. So it needs to be a program,
  36. : which may work with a script or which may be controled by command line
  37. : parameters.
  38. Exactly.  MS-DOS Kermit is the Kermit software for DOS and Windows 3.x:
  39.  
  40.   http://www.columbia.edu/kermit/mskermit.html
  41.  
  42. Have your application start MS-DOS Kermit with a command line like:
  43.  
  44.   c:\kermit\kermit take filename
  45.  
  46. where "filename" is the name of a command file that you (or your
  47. application) have written.  This command file can do anything you want it
  48. to do -- make the connection, log in automatically, transfer files, log
  49. out, etc.  The status of the script is returned as the exit code of
  50. KERMIT.EXE.  It's all described in the "Using MS-DOS Kermit" manual.
  51.  
  52. If you are going to be redistributing this software, be sure to license it
  53. properly as described at the URL above.
  54.  
  55. - Frank